home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000426_news@columbia.edu_Wed Dec 14 03:13:00 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26792
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 12:01:58 -0500
  3. Received: by apakabar.cc.columbia.edu id AA23504
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 12:01:51 -0500
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Intermittent Problem with Kermit Under Windows
  9. Message-Id: <1994Dec14.091300.35417@cc.usu.edu>
  10. Date: 14 Dec 94 09:13:00 MDT
  11. References: <94340.130308SMITHM@qucdn.queensu.ca> <3cbbtd$iqi@apakabar.cc.columbia.edu> <1994Dec11.212311.35180@cc.usu.edu> <3ckqjv$v74@quartz.ucs.ualberta.ca>
  12. Organization: Utah State University
  13. Lines: 30
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3ckqjv$v74@quartz.ucs.ualberta.ca>, Ken.Crossman@ualberta.ca (ken crossman) writes:
  17. > Hello Joe:
  18. > Another window-ish question:
  19. > Most of our Windows/TCPIP customers are using a Winsock stack, usually
  20. > Novells.
  21. > We have not been able to locate a Winsock Telnet client which
  22. > can match the features provided by Mskermit. (diacritics, session logging).
  23. > Do you know of any way to get Mskermit like quality from Telnet sessions 
  24. > when using Winsock? 
  25. --------------
  26.     I'd like to say "there's only one" but that would not be entirely
  27. fair. While at DOS level outside of Windows (not the DOS box) load Novell's
  28. TELAPI after starting their TCP/IP stack. MS-DOS Kermit can use that while
  29. in Windows, via SET PORT BIOSn, or SET PORT 3COM(BAPI), or SET PORT
  30. NOVELL(NASI), or with a simple assistance of macro "telapi" such as
  31.  
  32. def telapi run tsu -o \%1 -p \%2 k1,run tsu -a k1 1,set port nov
  33.  
  34. (run as Kermit command telapi host.domain). 
  35.     I think I need to remind readers that many "winsock" interfaces
  36. are but a thin layer which reaches down to a TCP/IP stack loaded as a DOS
  37. TSR. Not all, but many. So the attraction is more glitter (memory hogging,
  38. more software to pass through for every byte) than one might suspect.
  39.     Joe D.
  40.